home *** CD-ROM | disk | FTP | other *** search
/ Champak 26 (Anniversary Edition) / Volume 26 [Anniversary Edition] - JOGO DISK .iso / DEPOSITO / REmovido / Nave / SpaceExplorer.swf / scripts / DefineSprite_89 / frame_1 / DoAction.as
Text File  |  2006-06-13  |  670b  |  26 lines

  1. this.onEnterFrame = function()
  2. {
  3.    if(_root.ok == 1)
  4.    {
  5.       if(this.hittest(_root.ship.targxx))
  6.       {
  7.          if(Math.abs(_root.ship.speedY) < 0.3 && Math.abs(_root.ship.speedX) < 0.3)
  8.          {
  9.             _root.ship.burnL._visible = 0;
  10.             _root.ship.burnR._visible = 0;
  11.             _root.ship.burnD._visible = 0;
  12.             _root.score += 150;
  13.             _root.play();
  14.          }
  15.          else
  16.          {
  17.             _root.ship.burnL._visible = 0;
  18.             _root.ship.burnR._visible = 0;
  19.             _root.ship.burnD._visible = 0;
  20.             _root.ship.gotoAndPlay(2);
  21.          }
  22.          _root.ok = 0;
  23.       }
  24.    }
  25. };
  26.